home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / bitmap / wc4g < prev    next >
Encoding:
Text File  |  1994-08-12  |  1.0 KB  |  44 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4. CFLAGS = -DMSDOS
  5.  
  6. all: wc4g.tag bitmap.exe bmtoa.exe atobm.exe ~\app-defa\bitmap.res
  7.  
  8. .c.obj :
  9.     wcc386 $(CFLAGS) $*.c
  10.  
  11. O =    bitedit.obj cutpaste.obj graphics.obj reqmach.obj bitmap.obj \
  12.     dialog.obj handlers.obj
  13.  
  14. bitmap.exe:    link.rsp wc4g $(O)
  15.     wlink N bitmap.exe f @link.rsp l xaw,xmu,xt,x11,xext,sys op st=30k,caseexact
  16.  
  17. bmtoa.exe:    bmtoa.obj mktemp.obj
  18.     wlink N bmtoa.exe f bmtoa,mktemp l xaw,xmu,xt,x11,xext,sys op st=30k,caseexact
  19.  
  20. atobm.exe:    atobm.obj
  21.     wlink N atobm.exe f atobm l xaw,xmu,xt,x11,xext,sys op st=30k,caseexact
  22.  
  23. ~\app-defa\bitmap.res:    bitmap.ad
  24.     copy bitmap.ad ~\app-defa\bitmap.res
  25.  
  26. wc4g.tag:
  27.     del *.tag
  28.     del *.obj
  29.     del *.map
  30.     del *.rsp
  31.     del *.cfg
  32.     del *.exe
  33.     echo >wc4g.tag
  34.  
  35. link.rsp:    wc4g
  36.     echo bitedit,          > link.rsp
  37.     echo cutpaste,         >> link.rsp
  38.     echo graphics,         >> link.rsp
  39.     echo reqmach,          >> link.rsp
  40.     echo bitmap,           >> link.rsp
  41.     echo dialog,           >> link.rsp
  42.     echo handlers          >> link.rsp
  43.  
  44.